home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-08-27 | 674 b | 34 lines |
- #
- # Makefile for making the object files to be loaded
- # into the demo.
- # $Header: /private/postgres/demo/RCS/makefile.source,v 1.2 1991/11/19 17:56:36 mer Exp $
- #
- .SUFFIXES: .o .c .temp .pq
-
- all: circle.o boxarea.o overpaid.o set-up-1.pq
-
- clean:
- rm -f *.o *.pq
-
- set-up-1.pq: set-up-1.temp
-
- .temp.pq:
- -@ echo "producing the setup script $(@F)" ; \
- C=`pwd`; sed -e "s:_CWD_:$$C:" < $(<F) > $(@F)
-
- .c.o:
- cc $(DEMOCCOPTS) -I../src/lib/H -c $(<F)
-
-
- #
- # DEPENDENCIES (generated, do not modify by hand)
- #
- circle.o: circle.c
- circle.o: /usr/include/stdio.h
- circle.o: ../src/lib/H/utils/geo-decls.h
- circle.o: /usr/include/math.h
-
- boxarea.o: boxarea.c
-
- overpaid.o: overpaid.c
-